home *** CD-ROM | disk | FTP | other *** search
/ Perl Multimedia Cyber Classroom / PERL Multimedia Cyber Classroom (Prentice Hall)(1998).ISO / perlbyex / code.jar / 0aex014.jar / code / ch0a / 0aex014 / 0aex014.pl next >
Perl Script  |  1998-04-01  |  205b  |  6 lines

  1. #!/usr/bin/perl
  2. print "The pid of this process is $$\n";
  3. print "The parent pid of this process is ", getppid,"\n";
  4. print `echo $$`
  5. # print the pid of the shell which is the parent of the perl process
  6.